Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /* **************************************************************************************************************** |
||
38 | 1 | ParameterBag.prototype.get = function(key, defaultValue) { |
|
39 | 4 | var value = this.store[key]; |
|
40 | 4 | if (typeof value === 'undefined') { |
|
41 | 2 | return defaultValue; |
|
42 | } |
||
43 | |||
44 | 2 | return value; |
|
45 | }; |
||
46 | |||
55 |